home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
The Atari Compendium
/
The Atari Compendium (Toad Computers) (1994).iso
/
files
/
prgtools
/
langs
/
isetl.arc
/
median.t
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
Macintosh to JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
Text File
|
1987-08-20
|
319 b
|
19 lines
program median;
while s /= [] do
print "Enter a set or tuple:";
read s;
x := arb({ x : x in s |
#[y: y in s | y < x] = #[y: y in s | y > x] } );
if x /= om
then print ["Median of", s, "is", x];
else print [s, "has no median"];
end;
end;
end;
[1..10];
[1..11];
[x**2: x in [1..11]];
[];